home *** CD-ROM | disk | FTP | other *** search
/ Champak 40 / Vol 40.iso / games / draw_pla.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-05-10  |  716 b   |  24 lines

  1. function doSomething()
  2. {
  3.    getURL("http://www.cremationproductions.com",_blank);
  4. }
  5. function doSomething2()
  6. {
  7.    getURL("http://www.cremationproductions.com",_blank);
  8. }
  9. function doSomething3()
  10. {
  11.    getURL("http://www.rustygames.com/index.php?ref=dp2",_blank);
  12. }
  13. stop();
  14. MENU.customItems.push(Functioned2);
  15. MENU = new ContextMenu();
  16. MENU.hideBuiltInItems();
  17. Functioned = new ContextMenuItem("Made by Eggy",doSomething);
  18. Functioned2 = new ContextMenuItem("Visit Cremation Productions",doSomething2);
  19. Functioned3 = new ContextMenuItem("Visit Rusty Games",doSomething3);
  20. MENU.customItems.push(Functioned);
  21. MENU.customItems.push(Functioned2);
  22. MENU.customItems.push(Functioned3);
  23. _root.menu = MENU;
  24.